Details
Add Lut Lookup Table effect to your camera.
Lut use Shader 3.0
Add it to the Camera GameObject via the Components menu
CameraFilterPack > LUT > PlayWith
*without and with Camera Filter Pack Lut PlayWith
Property |
Range |
Default |
---|---|---|
Lut Texture | // | Must be a size of 256x16 |
Blend | 0 to | : 1f ( 0 = original, 1 = Lut ) |
Manipulate Lut Simple by script
Example:
// Drag and Drop your Camera GameObject
// with the Lut Simple component
// to your current script on the CamFX_Lut_PlayWith field
public CameraFilterPack_Lut_PlayWith CamFX_Lut_PlayWith;
void Update()
{
CamFX_Lut_PlayWith.Blend = 1f;
}